home *** CD-ROM | disk | FTP | other *** search
- on InitBalloonObjects
- global gzTRBalloonObj, gcTRBAL_CH1, gcTR_BLUE, gcTR_RED, gcTR_GREEN, gcTR_YELLOW, gcTR_ORG, gcTR_PINK
- repeat with vIndex = 1 to 30
- mSetMySpriteChan(getAt(gzTRBalloonObj, vIndex), gcTRBAL_CH1 + (vIndex - 1))
- end repeat
- repeat with vI = 1 to 30
- set vCastNum to the number of cast "BalloonOne" + (vI - 1)
- mSetMyCastNum(getAt(gzTRBalloonObj, vI), vCastNum)
- end repeat
- repeat with vIndex = 1 to 30
- mSetMyVisible(getAt(gzTRBalloonObj, vIndex), 1)
- end repeat
- repeat with vIndex = 1 to 30
- mSetAmIDouble(getAt(gzTRBalloonObj, vIndex), 0)
- end repeat
- repeat with vIndex = 1 to 30
- mSetHaveIBeenDouble(getAt(gzTRBalloonObj, vIndex), 0)
- end repeat
- repeat with vIndex = 1 to 30
- mResetQuestList(getAt(gzTRBalloonObj, vIndex))
- end repeat
- repeat with vIndex = 1 to 30
- mSetAmIPopped(getAt(gzTRBalloonObj, vIndex), 0)
- end repeat
- set vTemp to list(10, 20, 30, 40, 50, 10, 20, 30, 40, 50, 10, 20, 30, 40, 50, 10, 20, 30, 40, 50, 10, 20, 30, 40, 50, 10, 20, 30, 40, 50)
- repeat with I = 1 to 30
- mSetMyPointValue(getAt(gzTRBalloonObj, I), getAt(vTemp, I))
- end repeat
- set vTemp to list(EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY)
- repeat with I = 1 to 30
- mSetMyQuestion(getAt(gzTRBalloonObj, I), getAt(vTemp, I))
- end repeat
- set vTemp to list(gcTR_GREEN, gcTR_GREEN, gcTR_GREEN, gcTR_GREEN, gcTR_GREEN, gcTR_ORG, gcTR_ORG, gcTR_ORG, gcTR_ORG, gcTR_ORG, gcTR_PINK, gcTR_PINK, gcTR_PINK, gcTR_PINK, gcTR_PINK, gcTR_RED, gcTR_RED, gcTR_RED, gcTR_RED, gcTR_RED, gcTR_YELLOW, gcTR_YELLOW, gcTR_YELLOW, gcTR_YELLOW, gcTR_YELLOW, gcTR_BLUE, gcTR_BLUE, gcTR_BLUE, gcTR_BLUE, gcTR_BLUE)
- repeat with I = 1 to 30
- mSetMyPopColor(getAt(gzTRBalloonObj, I), getAt(vTemp, I))
- end repeat
- end
-
- on ShowAllBalloons
- global gzTRBalloonObj, gcTRBAL_CH1
- set vSounds to list("Clo", "D", "E", "F", "G", "A", "B", "Chi")
- repeat with vIndex = 1 to 30
- set vNum to random(8)
- puppetSound("clink" & random(6) & ".aif")
- updateStage()
- puppetSprite(gcTRBAL_CH1 + (vIndex - 1), 1)
- mSetMyVisible(getAt(gzTRBalloonObj, vIndex), 1)
- mSetAmIPopped(getAt(gzTRBalloonObj, vIndex), 0)
- set the castNum of sprite (gcTRBAL_CH1 + (vIndex - 1)) to the number of cast "BalloonOne" + (vIndex - 1)
- set vCastNum to the number of cast "BalloonOne" + (vIndex - 1)
- mSetMyCastNum(getAt(gzTRBalloonObj, vIndex), vCastNum)
- updateStage()
- end repeat
- repeat while soundBusy(1)
- nothing()
- end repeat
- end
-
- on ShowAllBalloonsFast
- global gzTRBalloonObj, gcTRBAL_CH1
- repeat with vIndex = gcTRBAL_CH1 to gcTRBAL_CH1 + 29
- puppetSprite(vIndex, 1)
- set the visible of sprite vIndex to 1
- updateStage()
- end repeat
- end
-
- on InitBalloonObjsForNewGame
- global gcTRBAL_CH1
- repeat with vIndex = 1 to 30
- mSetMySpriteChan(getAt(gzTRBalloonObj, vIndex), gcTRBAL_CH1 + (vIndex - 1))
- end repeat
- repeat with vIndex = 1 to 30
- mSetMyVisible(getAt(gzTRBalloonObj, vIndex), 1)
- end repeat
- repeat with vIndex = 1 to 30
- mSetAmIDouble(getAt(gzTRBalloonObj, vIndex), 0)
- end repeat
- repeat with vIndex = 1 to 30
- mResetQuestList(getAt(gzTRBalloonObj, vIndex))
- end repeat
- repeat with vIndex = 1 to 30
- mSetAmIPopped(getAt(gzTRBalloonObj, vIndex), 0)
- end repeat
- end
-